/*
  fonts.css — Self-Hosting, keine externen Requests.

  Fraunces 72pt SuperSoft: statische Schnitte (kein Variable Font, siehe
  CLAUDE.md CI-Kurzform), lokal aus TTF nach WOFF2 konvertiert
  (fontTools, 2026-08-11). Lizenz: SIL OFL 1.1, Volltext liegt bei unter
  fonts/OFL.txt.

  Source Sans 3 fehlt als Font-Datei im Repo — kein @font-face-Eintrag
  dafür. tokens.css nutzt an dieser Stelle einen Systemschrift-Stack als
  ehrlichen Fallback (--font-body), bis die Schriftdatei nachgereicht und
  selbst gehostet werden kann. Kein Laden von Google Fonts oder anderen
  CDNs, auch nicht übergangsweise.
*/

@font-face {
  font-family: "Fraunces 72pt SuperSoft";
  src: url("fonts/Fraunces72ptSuperSoft-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces 72pt SuperSoft";
  src: url("fonts/Fraunces72ptSuperSoft-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces 72pt SuperSoft";
  src: url("fonts/Fraunces72ptSuperSoft-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
