/* ============================================================
   fonts.css — self-hosted @font-face declarations
   Served directly by WordPress (not processed by Vite) so that
   font URLs always resolve relative to the theme's asset path,
   regardless of whether the Vite dev server is running.

   HOW TO ADD A FONT
   -----------------
   1. Drop the .woff2 file into assets/fonts/
   2. Add a @font-face block below using ./filename.woff2
   3. Update fontFamily in tokens.config.cjs
   ============================================================ */


/* Inter Variable — covers all weights 100–900 */
@font-face {
    font-family: 'Inter';
    src: url('./InterVariable.woff2') format('woff2') tech(variations),
         url('./InterVariable.woff2') format('woff2-variations');
    font-weight:  100 900;
    font-style:   normal;
    font-display: swap;
}
