/* ============================================================
   Make My Song – Self-hosted Variable Fonts (DSGVO-konform)
   ============================================================
   Quellen:
   - Inter: github.com/rsms/inter (OFL 1.1)
   - Fraunces: github.com/undercasetype/Fraunces (OFL 1.1)
   Konvertiert TTF → WOFF2 (Brotli-Compression) für Performance.
   Variable Fonts decken alle Weights (100–900) stufenlos ab.
   ============================================================ */

/* INTER (Body) – alle Weights über die wght-Achse */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/InterVariable.woff2') format('woff2');
}

/* FRAUNCES (Display) – alle Weights normal */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/Fraunces-Variable.woff2') format('woff2');
}

/* FRAUNCES Italic – für italic-Akzente in Display-Headlines */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/Fraunces-Italic-Variable.woff2') format('woff2');
}
