/* ───────────────────────────────────────────────────────────────────
 * Kennedy Painting — Font Loading
 *
 * Drop the <link> snippet below into <head>, OR @import this file
 * from your global CSS. The CDN choice (Google Fonts) matches the
 * production site at stlouishousepainting.com — same fonts, same
 * weights, same provider, so the brand reads identically.
 *
 * Authored by Vera, 2026-05-27.
 * ─────────────────────────────────────────────────────────────────── */

/* If self-hosting (preferred for perf in production), download the
   following from fonts.google.com and host alongside this file:
     - Oswald — weights 500, 700
     - Montserrat — weights 400, 500, 700, 800

   For greenfield prototypes, the Google Fonts CDN is fine. */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800&family=Oswald:wght@500;700&display=swap');

/*
  Equivalent <head> snippet (preferred — avoids @import blocking):

  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link rel="stylesheet"
        href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800&family=Oswald:wght@500;700&display=swap">
*/
