/**
 * Bondgenoot — fonts.css
 * =================================================================
 * /assets/css/fonts.css (cluster A pakket A6 fase F030)
 *
 * @font-face placeholders voor de 5 type-families uit HANDBOEK 7.1.
 *
 * STATUS: WOFF2-bestanden komen pas in F101 (cluster B) —
 * google-webfonts-helper genereert per family de @font-face-block.
 * Tot die tijd valt CSS terug op systeem-fallbacks (zie tokens.css):
 *   - 'Cinzel'        → serif
 *   - 'Fraunces'      → serif
 *   - 'Inter'         → system-ui sans-serif
 *   - 'Lora'          → serif
 *   - 'JetBrains Mono'→ monospace
 *
 * Gevolg op MVP: de UI ziet er functioneel uit met systeemfonts;
 * de "perkament-Cinzel"-banier-look komt in cluster B online. Dat is
 * acceptable (visuele MVP-evolutie, niet kritiek voor gameplay).
 *
 * Toekomst:
 *   - Self-hosted via /assets/fonts/{family}/*.woff2
 *   - font-display: swap (geen FOUT, wel FOUT)
 *   - subset op latin + extended-latin (geen Cyrillisch nodig)
 *
 * Voor nu: lege placeholders met commentaar — geen browser-fout
 * door 404 op .woff2 die er nog niet is.
 */

/* Plaatshouder — pas activeren in F101 wanneer fonts in /assets/fonts/ staan */

/*
@font-face {
  font-family: 'Cinzel';
  src: url('/assets/fonts/cinzel/cinzel-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cinzel';
  src: url('/assets/fonts/cinzel/cinzel-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces/fraunces-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter/inter-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('/assets/fonts/lora/lora-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('/assets/fonts/jetbrains-mono/jetbrains-mono-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*/
