/*
 * TASK-006: self-hosted webfonts. No Google Fonts CDN <link> anywhere on the site —
 * resolves the GDPR/visitor-IP-leak exposure Security and Legal both raised in the
 * Perspective Attack. Binaries live in ../fonts/ (downloaded once from Google's own
 * gstatic CDN, latin subset only — this is an English-only site, matching the
 * fastlane en-US metadata convention already used elsewhere in this repo).
 *
 * Both are variable fonts: one .woff2 file covers the full weight range declared
 * below, matching the multi-@font-face-block-per-weight pattern Google's own served
 * CSS uses (each block pins one weight from within the same variable binary).
 */

@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/bricolage-grotesque-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/work-sans-variable.woff2') format('woff2');
}
