/* ============================================================
   BLADE & CO. — SELF-HOSTED FONTS
   Replaces the Google Fonts CDN <link> to eliminate the
   render-blocking external request (Google Fonts CSS + font
   file round-trip ~750ms on PageSpeed Insights).

   HOW TO POPULATE /assets/fonts/:
   1. Go to https://gwfh.mranftl.com/fonts
   2. Search each family below, select ONLY the listed weights/styles,
      choose "Modern Browsers" (woff2 only — smaller, universally supported).
   3. Download the .woff2 files and place them in /assets/fonts/
      using the exact filenames referenced below.
   4. This file is already enqueued via functions.php — no further
      action needed once the files are in place.

   Required files (8 total):
   - playfair-display-v40-latin-700.woff2
   - playfair-display-v40-latin-700italic.woff2
   - cormorant-garamond-v21-latin-300.woff2
   - cormorant-garamond-v21-latin-400.woff2
   - cormorant-garamond-v21-latin-300italic.woff2
   - bebas-neue-v14-latin-regular.woff2
   - dm-sans-v15-latin-300.woff2
   - dm-sans-v15-latin-400.woff2
   - dm-sans-v15-latin-500.woff2
   ============================================================ */

/* ── PLAYFAIR DISPLAY (headings, serif) ──────────────────────── */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/playfair-display-v40-latin-700italic.woff2') format('woff2');
}

/* ── CORMORANT GARAMOND (elegant body accents) ───────────────── */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
}

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

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
}

/* ── BEBAS NEUE (display headlines) ──────────────────────────── */
@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/bebas-neue-v14-latin-regular.woff2') format('woff2');
}

/* ── DM SANS (body text, UI) ──────────────────────────────────── */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/dm-sans-v15-latin-300.woff2') format('woff2');
}

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

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