/* ───────────────────────────────────────────────────────────────
   NOCTEUR · self-hosted web fonts (no external / Google requests)

   Put these four .woff2 files into  /assets/fonts/ :
     CormorantGaramond-Medium.woff2
     CormorantGaramond-MediumItalic.woff2
     Inter-Regular.woff2
     Inter-Medium.woff2

   Where to get them (free, Latin subset is enough):
     https://gwfh.mranftl.com/fonts  → choose "Cormorant Garamond" (500 + 500 italic)
                                         and "Inter" (400 + 500), download woff2,
                                         then rename to the names above.
   Until the files are present, the site falls back to Georgia / Arial.
   ─────────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/CormorantGaramond-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/CormorantGaramond-MediumItalic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/Inter-Medium.woff2') format('woff2');
}
