﻿/* FONT 1 */
.font-1 {
    font-family: 'Rubik';
    font-weight: normal;
    font-size: 1em;
}

/* FONT 2 */
.font-2 {
    font-family: 'Nunito';
    font-weight: normal;
    font-size: 1em;
}

/* WEIGHT */

/* Normal */
.font-large,
.font-largest {
    font-weight: normal;
}

/* Light */
.font-light, 
.font-smallest-light, .font-small-light, 
.font-large-light, .font-large-light {
    font-weight: lighter;
}

/* Bold */
.font-bold,
.font-smallest-bold, .font-small-bold {
    font-weight: bold;
}

/* SIZE */

/* Smallest */
.font-smallest, .font-smallest-light, .font-smallest-bold {
    font-size: 0.8em;
}

/* Small */
.font-small, .font-small-light, .font-small-bold {
    font-size: 0.9em;
}

/* Large */
.font-large, .font-large-light {
    font-size: 1.2em;
}

.font-larger, .font-larger-light {
    font-size: 1.6em;
}

/* Largest */
.font-largest {
    font-size: 2em;
}

/* Special */
input, select {          
    font-weight: lighter;
    font-size: 1em;
}

@media (max-width: 549px) {
    .font-largest {
        font-size: 1.8em;
    }

    .menu-item {
        font-size: 0.9em;
        font-weight: lighter;
    }
}

