/* ══════════════════════════════════════════════════════════════════════════
   Die waehlbaren Marken-Schriften der Ueberschriften (V5122).

   Der Mandant waehlt sie in den Einstellungen unter „Begruessung"; angewandt
   wird sie ueber `[data-schrift="…"]` am <html> (Block in `index.html`, gesetzt
   von `applyMarkenschrift` und vom Boot-Skript). Die Liste der Namen steht in
   `services/brandingService.ts` (`MARKENSCHRIFTEN`) — `tests/markenschrift.test.ts`
   haelt beide Seiten ueber ABDECKUNG zusammen, nicht ueber ein Beispiel.

   ══ Warum alle drei hier deklariert stehen duerfen ══

   Eine `@font-face`-Deklaration laedt NICHTS. Der Browser holt die Datei erst,
   wenn ein gezeichnetes Element diese Familie wirklich braucht — ein Mandant
   ohne eigene Schrift zahlt also null Bytes, und ein Mandant mit Saira laedt
   Saira und sonst keine. Die Alternative (drei Dateien je nach Wahl per
   JavaScript einhaengen) waere derselbe Effekt mit einem zweiten Weg, auf dem
   der erste Anstrich blitzt.

   ══ Was hier NICHT steht ══

   Inter. Die Vorgabe kommt weiter aus `/fonts/inter.css` und ist keine Wahl,
   sondern der Boden: ohne `data-schrift` greift `var(--schrift-titel, 'Inter')`.

   ══ Warum nur `latin` und nur Schnitt 900 ══

   Diese Schriften stehen ausschliesslich in Ueberschriften, und die sind hier
   durchweg `font-black` und versal. Umlaute und ß liegen in `latin`;
   `latin-ext` kostete das Vierfache fuer nichts. Der Fliesstext bleibt Inter —
   dort haengen Ziffern-Tabellen, Lohnzahlen und elf Sprachen dran.

   Alle drei sind SIL Open Font License 1.1 (Google Fonts), selbst
   ausgeliefert wie Inter: kein fremder Abruf beim ersten Anstrich.
   ══════════════════════════════════════════════════════════════════════════ */

/* Saira — technisch, sportlich; gemessen 6 % schmaler als Inter. */
@font-face {
  font-family: 'Saira';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/marke/saira-900-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Saira';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/marke/saira-900i-latin.woff2') format('woff2');
}

/* Exo 2 — kantiger, technischer; gemessen 3 % breiter als Inter. */
@font-face {
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/marke/exo2-900-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Exo 2';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/marke/exo2-900i-latin.woff2') format('woff2');
}

/* Barlow Condensed — schmal und plakativ; braucht als einzige eine eigene
   Sperrung (`spur` im Profil), sonst laeuft die Ueberschrift ineinander. */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/marke/barlowcond-900-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/marke/barlowcond-900i-latin.woff2') format('woff2');
}
