/* DEFINE BRANDING THEME COLOR, FONT AND LOGO */
:root {
    --primary-color: 0, 101, 140;
    --text-color: 0, 0, 0;
    --bg-color: 255, 255, 255;
    --font-family: 'Lato', sans-serif;
    --logo: url("../images/appic-web.png");
}

[data-bs-theme="dark"] {
    --primary-color: 0, 155, 200;
    --text-color: 255, 255, 255;
    --bg-color: 0, 0, 0;
}

@font-face {
    font-family: 'Lato';
    src: url('./fonts/lato-regular-webfont.woff2') format('woff2'),
        url('./fonts/lato-regular-webfont.woff') format('woff'),
        url('./fonts/lato-regular-webfont.ttf') format('truetype'),
        url('./fonts/lato-regular-webfont.svg#lato-regular-webfont') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato-Bold';
    src: url('../fonts/lato-bold-webfont.woff2') format('woff2'),
        url('../fonts/lato-bold-webfont.woff') format('woff'),
        url('../fonts/lato-bold-webfont.ttf') format('truetype'),
        url('../fonts/lato-bold-webfont.svg#lato-bold-webfont') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
