/* Self-hosted Orbitron + Barlow — Spec 18b Stage 5 F1 fix.
 *
 * Re-generate the WOFF2 files with: python3 scripts/fetch_landing_fonts.py
 * Source: Google Fonts CSS API (CSS rewritten to point at local WOFF2).
 * Licenses: Orbitron SIL OFL 1.1; Barlow SIL OFL 1.1.
 *
 * Latin subset only — landing page is English-only. If we ever need
 * vietnamese / latin-ext / cyrillic coverage, re-run the fetch script
 * with additional subset filters + add the corresponding @font-face
 * blocks with the right unicode-range here.
 */

@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./orbitron-500-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./orbitron-700-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./barlow-400-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./barlow-500-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./barlow-700-latin.woff2') format('woff2');
}
