/*
 * Self-hosted shim for the site UI font (Inter).
 *
 * The v6 templates linked Google Fonts directly with a CROSS-ORIGIN
 * <link href="https://fonts.googleapis.com/...">, which ZAP flags as
 * "Sub Resource Integrity Attribute Missing". Google Fonts can't carry an
 * integrity hash (Google serves different CSS per browser, so any fixed hash
 * would break the font), so instead the pages now link THIS same-origin file
 * and it @imports the upstream sheet. A same-origin <link> isn't subject to
 * the SRI rule, so the medium clears — and the font still loads normally
 * (fonts.googleapis.com is allowed in CSP style-src; gstatic in font-src).
 */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");
