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

   FONT FILES REQUIRED:
   Place font files in /fonts/ directory (relative to site root):

   /fonts/nexa-bold.woff2
   /fonts/nexa-bold.woff
   /fonts/nexa-regular.woff2
   /fonts/nexa-regular.woff
   /fonts/draft-b-regular.woff2
   /fonts/draft-b-regular.woff

   Recommended: Use .woff2 (primary) and .woff (fallback) for best
   browser support and compression. If you have .ttf or .otf source
   files, convert them at https://transfonter.org or similar.

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


/* ---------------------------------------------------------------------------
   Nexa Bold — Headings (h1, h2, h3)
   --------------------------------------------------------------------------- */
@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;
}


/* ---------------------------------------------------------------------------
   Nexa Regular — Subheadings (h4, h5, h6)
   --------------------------------------------------------------------------- */
@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;
}


/* ---------------------------------------------------------------------------
   Draft B Regular — Body text
   --------------------------------------------------------------------------- */
@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;
}
