/* ==========================================================================
   HOME PAGE — TYPOGRAPHY CONSISTENCY OVERRIDE
   ==========================================================================
   Purpose : Make every text element on the Home Page (index.html) use the
             SAME font family / rendering as the Hero Section
             (.hs-brand-title, .hs-brand-sub-bar, .hs-brand-paragraph,
             .hs-btn-premium -> font-family: 'Poppins', sans-serif).

   Scope   : Strictly limited to `body.home-page` (only index.html carries
             this class). No other page links this file or carries this
             class, so About Us, Services, Our Projects, Contact, and the
             Address Interior pages are completely unaffected.

   Notes   : Only font-family is overridden here. Font sizes, font weights,
             letter-spacing, colors, spacing, layout, shadows, borders,
             animations and JS behavior defined elsewhere are left exactly
             as they were, preserving the existing premium look while
             removing the mixed serif (Astonpoliz / Georgia) and script
             (Caveat) fonts so the whole page reads as one consistent
             typographic system, matching the Hero.
   ========================================================================== */

body.home-page,
body.home-page h1,
body.home-page h2,
body.home-page h3,
body.home-page h4,
body.home-page h5,
body.home-page h6,
body.home-page p,
body.home-page span,
body.home-page a,
body.home-page li,
body.home-page ul,
body.home-page button,
body.home-page label,
body.home-page div,
body.home-page blockquote,
body.home-page input,
body.home-page textarea,
body.home-page select {
  font-family: 'Poppins', sans-serif !important;
}
