/*
 * dokuno — Lokale Schriften (DSGVO-konform)
 *
 * Wir nutzen einen modernen System-Font-Stack der auf jedem Gerät
 * ohne externe Anfragen funktioniert:
 *
 * macOS/iOS  → New York (Serif-Display) / SF Pro (Sans)
 * Windows    → Georgia / Segoe UI
 * Android    → Roboto
 * Linux      → Ubuntu / Noto
 *
 * Für selbst gehostete Schriften (empfohlen):
 * Datei 'cabinet-grotesk-var.woff2' unter /fonts/ ablegen
 * und den @font-face Block unten einkommentieren.
 *
 * Download: https://www.fontshare.com/fonts/cabinet-grotesk (kostenlos)
 */

/*
@font-face {
  font-family: 'Cabinet Grotesk';
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/cabinet-grotesk-var.woff2') format('woff2');
}
*/

:root {
  --font-display: 'New York', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue',
               Arial, 'Noto Sans', sans-serif;
  --font-mono: 'SF Mono', 'Cascadia Code', 'Fira Code', Consolas, monospace;
}
