23 lines
507 B
SCSS
23 lines
507 B
SCSS
|
@import '../colors.scss';
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Avenir';
|
||
|
font-weight: normal;
|
||
|
src: local('Avenir'),
|
||
|
url(../assets/avenir-font/AvenirLTStd-Roman.otf) format('opentype');
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Avenir';
|
||
|
font-weight: bold;
|
||
|
src: local('Avenir'),
|
||
|
url(../assets/avenir-font/AvenirLTStd-Black.otf) format('opentype');
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Avenir';
|
||
|
font-weight: lighter;
|
||
|
src: local('Avenir'),
|
||
|
url(../assets/avenir-font/AvenirLTStd-Book.otf) format('opentype');
|
||
|
}
|