/* ============================================================
   CLEANICHE — GLOBAL FONT SYSTEM
   Cormorant Garamond : display headings (h1, h2)
   DM Sans            : body, subheadings, UI elements
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Base ── */
*, body, html {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
}

/* ── Display headings ── */
h1, h2,
.display-font {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-style: normal;
}

/* Cormorant Bold variant */
h1 { font-weight: 700; }
h2 { font-weight: 700; }

/* ── Sub-headings keep DM Sans ── */
h3, h4, h5, h6,
label, button, input, select, textarea,
.nav-link, .cta-btn, .btn {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
}
