/* font.css – ONE FILE TO RULE ALL FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Rubik:wght@400;500;600&display=swap');

/* ==== RUBIK – ALL NORMAL TEXT ==== */
body, p, li, a, span, div,
input, textarea, button, label,
.text-sm, .text-base, .text-lg, .text-xl, .text-2xl {
    font-family: 'Rubik', system-ui, sans-serif !important;
    font-weight: 400 !important;
}

/* ==== MONTSERRAT BOLD – ALL TITLES ==== */
h1, h2, h3, h4, h5, h6,
.text-3xl, .text-4xl, .text-5xl, .text-6xl,
.font-bold, .font-extrabold,
.title, .subtitle {
    font-family: 'Montserrat', Impact, sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
}