/* Local fonts placeholder.
   Place your downloaded font files in this folder (woff2 preferred) and update the src paths below.

   Example usage:
     font-family: 'Lora';
     font-family: 'Space Grotesk';
*/

@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('Lora-Regular.woff2') format('woff2'),
       url('Lora-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('SpaceGrotesk-Regular.woff2') format('woff2'),
       url('SpaceGrotesk-Regular.woff') format('woff');
}

/* Add other weights/italic variations as needed. */

:root {
  --font-sans: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  --font-serif: 'Lora', Georgia, 'Times New Roman', Times, serif;
}

body { font-family: var(--font-sans); }
