/* ==========================================================================
   Follery Schriften (self-hosted, DSGVO-konform)
   - Inter (Headline) wird bereits ueber inter.css eingebunden (optimiertes woff2).
   - DM Sans (Fliesstext) und Caveat Brush (Schmuckschrift) hier.

   HINWEIS / TODO Optimierung: DM Sans und Caveat Brush liegen derzeit nur als
   TTF vor und werden direkt eingebunden. Vor breitem Rollout auf woff2 + Latin-
   Subset konvertieren (deutlich kleiner), analog inter.css. Siehe
   docs/design-system.md (3. Typografie).
   ========================================================================== */

/* DM Sans – Variable Font (deckt Gewichte 400–700 ab) */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/DM_Sans/DMSans-VariableFont_opsz,wght.ttf') format('truetype-variations');
}

/* Caveat Brush – Schmuckschrift (nur Regular) */
@font-face {
  font-family: 'Caveat Brush';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/Caveat_Brush/CaveatBrush-Regular.ttf') format('truetype');
}
