/*
  Font loading.
  Lora and Inter are loaded from Google Fonts via a <link> in the
  <head> (faster than @import — avoids an extra render-blocking round trip).
  This file only defines the font-stack variables and fallbacks so the
  rest of the CSS never references a font family name directly.
*/

:root {
  --font-heading: 'Lora', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
