/*
 * fonts.css — Sovereign system font stack (zero external dependencies)
 * Uses OS-native fonts only. No downloads, no CDN, no font files.
 */

:root {
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Futura', 'Century Gothic', 'Trebuchet MS', Arial, sans-serif;
  --font-mono: 'SFMono-Regular', 'SF Mono', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
}

body { font-family: var(--font-sans); }
code, pre, kbd, samp { font-family: var(--font-mono); }
