/* ============================================================================
   FONTS.CSS, The Real Jason Duncan
   @font-face declarations for Nexa and Draft B
   ============================================================================

   STATUS (2026-05-12): @font-face declarations disabled.

   The font files (nexa-bold, nexa-regular, draft-b-regular in .woff2 and
   .woff) have never been committed to this repo, so every page was loading
   6 fonts that returned 404. The browser silently fell through to the
   fallback stack (system sans-serif), which is what users currently see.

   To re-enable: source the actual font files, drop them into
   trjd-website-rebrand/fonts/ (path resolves to /fonts/* on the deployed
   site), then uncomment the @font-face blocks below.

   ============================================================================ */


/* Disabled until font files are committed. Uncomment when files exist. */

/*
@font-face {
  font-family: "Nexa";
  src: url("../fonts/nexa-bold.woff2") format("woff2"),
       url("../fonts/nexa-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nexa";
  src: url("../fonts/nexa-regular.woff2") format("woff2"),
       url("../fonts/nexa-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Draft B";
  src: url("../fonts/draft-b-regular.woff2") format("woff2"),
       url("../fonts/draft-b-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*/
