/**
 * Local Font Definitions - GDPR-safe self-hosted fonts
 * Replaces Google Fonts CDN with locally hosted woff2 files
 */

/* Glacial Indifference - Default body font */
@font-face {
  font-family: 'Glacial Indifference';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/GlacialIndifference-Regular.otf') format('opentype');
}

:root {
  --font-body: 'Glacial Indifference', 'Segoe UI', sans-serif;
}

body {
  font-family: var(--font-body);
}
