function font
@mixin font($tipo) {
@if $tipo == light {
font-style: normal;
font-weight: 300;
}
@if $tipo == light-italic {
font-style: italic;
font-weight: 300;
}
@if $tipo == normal {
font-style: normal;
font-weight: 400;
}
@if $tipo == bold {
font-style: normal;
font-weight: 700;
}
}