/* ============================================================
   Infomedia Studios — Webfont declarations
   Both substitute families are now self-hosted from the official variable
   TTFs the brand supplied:
     • DM Sans     — substitute for the commercial Area Normal
     • Newsreader  — substitute for the commercial GTF Riposte (accent serif)
   No external font CDN is used.
   ============================================================ */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 75% 125%;
  font-display: swap;
  src: url('../assets/fonts/DMSans-Variable.ttf') format('truetype-variations');
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400 700;
  font-stretch: 75% 125%;
  font-display: swap;
  src: url('../assets/fonts/DMSans-Italic-Variable.ttf') format('truetype-variations');
}

/* Accent serif substitute (GTF Riposte → Newsreader), self-hosted */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../assets/fonts/Newsreader-Variable.ttf') format('truetype-variations');
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url('../assets/fonts/Newsreader-Italic-Variable.ttf') format('truetype-variations');
}

