/* Audio Lounge — Fonts (self-hosted)
   =================================================================
   Latin-subset woff2 files downloaded from Google Fonts and served
   from /design-system/fonts/files/. Total bundle: ~120 KB.

   Previously this file @imported https://fonts.googleapis.com/..., but
   the app's CSP blocks font-src outside 'self' + 'data:', so the
   Google CDN fetch failed and the specimen rendered in system serif.
   Self-hosting keeps the specimen portable and CSP-compliant.

   ADMIN COCKPIT (navy/gold)
   - Geist Sans  — display + body (variable font, weights 100-900)
   - Geist Mono  — tabular numerics (variable font, weights 100-900)

   AL PUBLIC BRAND (warm-dark, amber→violet)
   - Archivo Black — display headlines (single weight 400)
   - Manrope       — body copy, UI (variable font, weights 200-800)
   - Space Mono    — statistics, eyebrows, status pills (weights 400, 700)

   To refresh the fonts, re-run the download script inline in the
   feat(design-system) commit — see commit message for exact curl
   + awk recipe. Only the latin subset is included; extend if CJK
   or Cyrillic copy ever ships in the specimen.
*/

@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./files/archivo-black-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./files/geist-variable.woff2') format('woff2-variations');
}

@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./files/geist-mono-variable.woff2') format('woff2-variations');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('./files/manrope-variable.woff2') format('woff2-variations');
}

@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./files/space-mono-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./files/space-mono-700.woff2') format('woff2');
}
