/* =====================================================================
   unique-fonts.css — self-hosted webfonts (no Google Fonts round-trip)

   Drop the .woff2 files into  wwwroot/lib/fonts/  with these names:

     DMSans-Light.woff2          (300)
     DMSans-Regular.woff2        (400)
     DMSans-Medium.woff2         (500)
     DMSans-SemiBold.woff2       (600)
     DMMono-Regular.woff2        (400)
     DMMono-Medium.woff2         (500)
     PlayfairDisplay-SemiBold.woff2 (600)

   Get them from https://fonts.google.com (Download family), or with
   google-webfonts-helper: https://gwfh.mranftl.com/fonts
   Pick "woff2" + "latin" — that is all this app needs.

   font-display:swap keeps text visible while the font loads, so a slow
   or missing font never blocks rendering.
   ===================================================================== */

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/lib/fonts/DMSans-Light.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/lib/fonts/DMSans-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/lib/fonts/DMSans-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/lib/fonts/DMSans-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/lib/fonts/DMMono-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/lib/fonts/DMMono-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/lib/fonts/PlayfairDisplay-SemiBold.woff2') format('woff2');
}
