/*
        Tipos de format()
        - opentype (otf)
        - truetype (ttf)
        - embedded-opentype
        - truetype-aat (Apple Advanced 
        Typography)
        -svg
    */

@font-face {
    font-family: 'Futura-heavy';
    src: url('../fonts/futura-heavy-font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Futura-medium';
    src: url('../fonts/futura-medium-bt.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Futura-heavy', Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
span {
    font-family: 'Futura-heavy', sans-serif, serif;
}

p {
    font-family: 'Futura-medium', sans-serif, serif
}