/* .............................................................................
FONTS

Gabarito -- Google Font
Weight range: 400-900
Regular: 400
Bold: 700
Black: 900
............................................................................. */

/* Variable font - supports all weights from 400 to 900 */
@font-face {
    font-family: 'Gabarito';
    src: url('../fonts/Gabarito-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 400 900;
    font-style: normal;
}

/* Fallback static fonts for older browsers */
@font-face {
    font-family: 'Gabarito';
    src: url('../fonts/Gabarito-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gabarito';
    src: url('../fonts/Gabarito-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gabarito';
    src: url('../fonts/Gabarito-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}



html,
body,
button,
input,
select,
textarea {
    font-family: 'Gabarito', sans-serif;
}

strong,
.wStrong {
    font-weight: 700;
}

.wBlack {
    font-weight: 900;
}

.wRegular {
    font-weight: 400;
}