/* =============================================================
 * secret.kuljkin.de — System-Font-Stack
 * -------------------------------------------------------------
 * Ersetzt die frühere Einbindung von Google Fonts (Inter via
 * fonts.googleapis.com), die aufgrund der unangekündigten
 * IP-Übertragung an Google LLC seit LG München I, Az. 3 O 17493/20
 * (Urteil vom 20.01.2022) datenschutzrechtlich problematisch ist.
 *
 * Statt einer extern geladenen Schrift kommt ein nativer
 * System-UI-Stack zum Einsatz:
 *   • macOS / iOS  → SF Pro
 *   • Windows      → Segoe UI
 *   • Android      → Roboto
 *   • Linux        → System-Default (Cantarell, Ubuntu, …)
 *
 * Vorteile: 0 KB Drittanbieter-Traffic, 0 ms Font-Loading,
 * keine FOUT/FOIT, keine externen Subrequests, vollständig
 * privacy-konform.
 *
 * Falls Inter zwingend gewünscht ist, kann die Schrift unter
 * /fonts/ lokal abgelegt und via @font-face eingebunden werden
 * (siehe Block unten, optional auskommentiert).
 * ============================================================= */

:root {
  --font-sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Liberation Sans", sans-serif;
}

/* ---------------------------------------------------------------
 * Optional: Inter lokal hosten
 * ---------------------------------------------------------------
 * 1) Inter Variable Font WOFF2 nach /fonts/InterVariable.woff2
 *    legen (offizielle Quelle: https://rsms.me/inter/font-files/).
 * 2) Folgenden Block einkommentieren.
 * 3) In :root --font-sans an erster Stelle "Inter" setzen.
 * ---------------------------------------------------------------
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/InterVariable.woff2') format('woff2-variations');
}
*/
