/* Manrope Medium (OTF) */
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope.medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* =========================
   Oswald Bold (700)
========================= */
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/oswald.bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* Tailwind-like utility */
.font-manrope {
    font-family: 'Manrope', ui-sans-serif, system-ui, -apple-system,
                 BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial,
                 'Apple Color Emoji', 'Segoe UI Emoji';
    font-weight: 500;
}


.font-oswald {
    font-family: 'Oswald', ui-sans-serif, system-ui, -apple-system,
                 BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial,
                 'Apple Color Emoji', 'Segoe UI Emoji';
}

/* Optional explicit weights */
.font-oswald-semibold {
    font-family: 'Oswald', ui-sans-serif, system-ui;
    font-weight: 600;
}

.font-oswald-bold {
    font-family: 'Oswald', ui-sans-serif, system-ui;
    font-weight: 700;
}