/*
  fonts.css — Local webfont declarations
  -------------------------------------
  Add @font-face rules for families used across the site.
  Prefer WOFF2 with optional WOFF fallback and set font-display: swap.

  Example (static family):
  @font-face {
    font-family: "Poppins";
    src:
      url("/assets/fonts/poppins/Poppins-Regular.woff2") format("woff2"),
      url("/assets/fonts/poppins/Poppins-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  Example (variable font):
  @font-face {
    font-family: "Inter";
    src: url("/assets/fonts/inter/Inter-Variable.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }

  Then set the design token in theme.css, for example:
  :root { --font-base: "Poppins", system-ui, sans-serif; }
*/

