/* SPK BEAM eStore — Nunito Font Loading
 * ══════════════════════════════════════
 * FIX (2026-07-01): The previous approach used hardcoded @font-face blocks
 * pointing directly to fonts.gstatic.com woff2 binary URLs. Google rotates
 * these content-addressed hash URLs when they update their font infrastructure.
 * All 5 URLs returned 404 — visible in DevTools as red font requests.
 *
 * Fix: Use the official Google Fonts CSS2 API @import. Google maintains this
 * endpoint, updates the woff2 URLs whenever they change, and serves the CSS
 * with correct Cache-Control headers. The woff2 binaries themselves are served
 * from fonts.gstatic.com with a 1-year max-age — browsers cache them long-term
 * regardless of whether the SW intercepts them.
 *
 * Weights loaded: 400, 600, 700, 800, 900 — all used in the design system.
 * font-display: swap — text renders immediately in system font, swaps to Nunito
 * once loaded. No invisible text, no layout shift on first visit.
 */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');
