/* Declare a font */

@font-face {
    font-family: 'avenir book';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/avenir_book.ttf') format('truetype');
}

@font-face {
    font-family: 'futur';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/futura.ttf') format('truetype');
}

.title-avenir {
    font-family: 'avenir book';
}

.title-avenir-bold {
    font-family: 'avenir book';
    font-weight: bolder;
}

.title-futur {
    font-family: 'futur';
}