15 lines
284 B
SCSS
15 lines
284 B
SCSS
|
@mixin font-body($weight: 400) {
|
||
|
font-family: 'Raleway', sans-serif;
|
||
|
font-weight: $weight;
|
||
|
}
|
||
|
|
||
|
@mixin font-title($weight: 400) {
|
||
|
font-family: 'Montserrat', sans-serif;
|
||
|
letter-spacing: 1px;
|
||
|
font-weight: $weight;
|
||
|
}
|
||
|
|
||
|
@mixin font-cursive() {
|
||
|
font-family: 'Satisfy', cursive;
|
||
|
}
|