@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;800&display=swap');

:root {
    --brand-blue: #2563FF;
    --brand-white: #FFFFFF;
    --brand-black: #111111;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--brand-black);
    background-color: var(--brand-white);
}

/* Helper classes for your font weights */
.text-headline { font-weight: 800; } /* Poppins ExtraBold */
.text-tagline { font-weight: 500; }  /* Poppins Medium */

/* Ensure the whole site background is strictly white */
body {
    background-color: #FFFFFF;
    color: #111111;
}

/* Force branding colors for sections */
.bg-brand-white { background-color: #FFFFFF; }
.text-brand-black { color: #111111; }
.text-brand-blue { color: #2563FF; }