/* Self-hosted Fonts (§4, CSP-strikt, DSGVO-freundlich, offline-fähig).
 *
 * Vorgehen: Schrift-Dateien (woff2) liegen lokal in diesem Ordner und werden
 * per @font-face eingebunden — keine externe Font-Domain, keine CSP-Allowlist
 * für fonts.googleapis.com nötig.
 *
 * Solange eine woff2-Datei noch nicht geliefert ist, greifen automatisch die
 * System-Font-Fallbacks aus den Token-Stacks (design/tokens.css, Themes) — die
 * Seite bleibt also jederzeit lesbar.
 *
 * Beispiel (aktivieren, sobald die Datei vorliegt):
 *
 * @font-face {
 *   font-family: "Inter";
 *   font-style: normal;
 *   font-weight: 400 700;
 *   font-display: swap;
 *   src: url("./inter-variable.woff2") format("woff2");
 * }
 * @font-face {
 *   font-family: "Playfair Display";
 *   font-style: normal;
 *   font-weight: 400 700;
 *   font-display: swap;
 *   src: url("./playfair-variable.woff2") format("woff2");
 * }
 */
