/* The brand's faces, self-hosted. Nothing here is fetched from a CDN: the
   product is installable and must render with the network switched off.
   Served at a stable /fonts/… path in dev and in build by the `brandAssets()`
   Vite plugin (src/vite.ts), so a <link rel="preload"> can name the file.

   Fredoka is not here on purpose — it is a game-scene face that Phaser and
   Three rasterize, not a brand face, and it ships with the app that uses it. */

/* Anton — display: fighter names, headlines, rankings, big numbers.
   Latin subset only (12KB); never asked to set Hebrew or body copy. */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/anton-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Archivo — the brand's speaking voice. Variable in weight AND width, which is
   what makes the wordmark possible: italic 900 at 125% stretch is the logotype,
   and the same file sets marketing body copy. Two files, upright and italic. */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("/fonts/archivo.woff2") format("woff2");
}

@font-face {
  font-family: "Archivo";
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("/fonts/archivo-italic.woff2") format("woff2");
}
