/* Proxima Nova — local TTF
   Weight mapping:
     300 → Light
     400 → Regular
     600 → Semibold
     700/800 → Extrabold
   No italic file is provided; italic styles fall back to synthetic italic on the matching weight. */

@font-face {
    font-family: 'Proxima Nova';
    src: url('ProximaNova-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('ProximaNova-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('ProximaNova-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('ProximaNova-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('ProximaNova-Extrabold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('ProximaNova-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('ProximaNova-Extrabold.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Apply Proxima Nova as the default frontend font, overriding Public Sans. */
body,
.aiz-megabox-elem,
input, select, textarea, button,
h1, h2, h3, h4, h5, h6,
.btn, .nav, .navbar, .form-control,
.card, .card-header, .card-body,
.fw-400, .fw-500, .fw-600, .fw-700, .fw-800, .fw-900 {
    font-family: 'Proxima Nova', 'Public Sans', sans-serif !important;
}

/* Map Bootstrap / utility "bold" rules to Extrabold (700). */
strong, b, .fw-700, .fw-bold, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.fw-600 { font-weight: 600; }
.fw-500 { font-weight: 500; }
.fw-400 { font-weight: 400; }
.fw-300 { font-weight: 300; }
