/* ============================================================
   FONTS — Clash Display, Medium + Regular (self-hosted FALLBACK)
   ------------------------------------------------------------
   The site uses one typeface — Clash Display — at two weights:
   Medium (500) for headings/labels/emphasis, Regular (400) for body text.

   The website already loads these live from Fontshare's free CDN (see
   the <link> tag in templates/base.html) — no setup needed, this works
   out of the box.

   This file is an OPTIONAL alternative for self-hosting instead of
   relying on Fontshare's CDN (e.g. for offline use or stricter
   privacy/CDN policies):
       https://www.fontshare.com/fonts/clash-display

   TO SELF-HOST INSTEAD:
     1. Download the Clash Display family from the link above.
     2. Copy these two files into  static/fonts/ :
          ClashDisplay-Medium.woff2
          ClashDisplay-Regular.woff2
     3. Remove the Fontshare <link> tag in templates/base.html.

   Until self-hosted files are added, the @font-face blocks below simply
   won't load (harmless) and the CDN version above is used instead.
   ============================================================ */

@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
