/* ================================
   GLOBAL TYPOGRAPHY - SUBRIK 2.0
   ================================ */

:root {

    /* Font Families */
    --font-logo: 'Poppins', sans-serif;
    --font-text: Geist Wght, sans-serif;
    --font-numbers: Geist Wght, sans-serif;
    --font-text-2:'Inter', sans-serif;
    --main: #233F76;
    --secondary: #2EC4B6;
    --bg: #F4F6F8;
    --white: #FFFFFF;
    --text: #000000;

    /* Motion tokens (pro) */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
    --ease-standard: cubic-bezier(0.2, 0, 0, 1);

    --dur-fast: 140ms;
    --dur-med: 260ms;
    --dur-slow: 520ms;

}

@font-face {
    font-family: Geist Wght;
    src: url(https://cdn.prod.website-files.com/674a2e96ae9860edcf48cf5c/674a2e97ae9860edcf48cfb8_Geist%5Bwght%5D.ttf)format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Base body */
body {
    font-family: var(--font-text);
    font-weight: 400;
    color: #000;
}

/* ===== Logo Title ===== */
.font-logo {
    font-family: var(--font-logo);
}

/* ===== General Text ===== */
.font-text {
    font-family: var(--font-text);
}

/* ===== Numbers ===== */
.font-numbers {
    font-family: var(--font-numbers);
    font-variant-numeric: tabular-nums;
}

/* Utility classes */
.text-bold {
    font-weight: 700;
}

.text-semibold {
    font-weight: 600;
}

.text-light {
    font-weight: 300;
}