/* ═══════════════════════════════════════════════════════════════
   GilFlow — fonts.css
   Local @font-face declarations.

   IMPORTANT: After running libman restore (or manually downloading),
   place the font files in:
     wwwroot/lib/fonts/cormorant-garamond/
     wwwroot/lib/fonts/dm-sans/

   Font files needed:
   Cormorant Garamond:
     CormorantGaramond-Light.woff2       (weight 300)
     CormorantGaramond-Regular.woff2     (weight 400)
     CormorantGaramond-Medium.woff2      (weight 500)
     CormorantGaramond-SemiBold.woff2    (weight 600)

   DM Sans:
     DMSans-Light.woff2    (weight 300)
     DMSans-Regular.woff2  (weight 400)
     DMSans-Medium.woff2   (weight 500)
     DMSans-SemiBold.woff2 (weight 600)

   You can download these from Google Fonts or use the
   google-webfonts-helper tool: https://gwfh.mranftl.com/fonts
   ═══════════════════════════════════════════════════════════════ */

/* ─── Cormorant Garamond ─────────────────────────────────────── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/cormorant-garamond/CormorantGaramond-Light.woff2') format('woff2');
}

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

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

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond/CormorantGaramond-SemiBold.woff2') format('woff2');
}

/* ─── DM Sans ────────────────────────────────────────────────── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/dm-sans/DMSans-Light.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-sans/DMSans-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dm-sans/DMSans-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/dm-sans/DMSans-SemiBold.woff2') format('woff2');
}
