/* Licensed webfonts – Museo Slab (headings) and Gotham (body).
 * Install files via: npm run copy-fonts (see scripts/check-fonts.mjs).
 * System fallbacks in src/index.css apply when fonts are missing. */
@font-face {
  font-family: "Museo Slab";
  src:
    url("/fonts/MuseoSlab-300.woff2") format("woff2"),
    url("/fonts/MuseoSlab-300.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

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