/*
  EZE Bookkeeping — Self-hosted fonts
  Place all woff2 files in /assets/fonts/

  OUTFIT — upload as-is from gwfh download:
    outfit-v15-latin-300.woff2
    outfit-v15-latin-regular.woff2   (400)
    outfit-v15-latin-500.woff2
    outfit-v15-latin-600.woff2
    outfit-v15-latin-700.woff2
    outfit-v15-latin-800.woff2

  PLAYFAIR DISPLAY — from gwfh.mranftl.com/fonts/playfair-display
    Select: 700, 900, 700italic
    playfair-display-v40-latin-700.woff2
    playfair-display-v40-latin-900.woff2
    playfair-display-v40-latin-700italic.woff2

  DM MONO — from gwfh.mranftl.com/fonts/dm-mono
    Select: 400, 500
    dm-mono-v16-latin-regular.woff2
    dm-mono-v16-latin-500.woff2

  Note: version numbers (v15, v36, v14) may differ slightly —
  just use whatever gwfh downloads and update filenames below to match.
*/

/* ── OUTFIT ── */
@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/outfit-v15-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/outfit-v15-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/outfit-v15-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/outfit-v15-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/outfit-v15-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: 'Outfit';
  src: url('/assets/fonts/outfit-v15-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: optional;
}

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

@font-face {
  font-family: 'Playfair Display';
  src: url('/assets/fonts/playfair-display-v40-latin-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: optional;
}

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

/* ── DM MONO ── */
@font-face {
  font-family: 'DM Mono';
  src: url('/assets/fonts/dm-mono-v16-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: 'DM Mono';
  src: url('/assets/fonts/dm-mono-v16-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: optional;
}
