27 lines
595 B
CSS
27 lines
595 B
CSS
|
|
|
|
/* Custom fonts */
|
|
|
|
@font-face {
|
|
font-family: 'title-h2';
|
|
src: url('./title-h2.woff2') format('woff2'),
|
|
url('./title-h2.woff') format('woff'),
|
|
url('./title-h2.ttf') format('truetype');
|
|
}
|
|
|
|
|
|
@font-face {
|
|
font-family: 'title-h1';
|
|
src: url('./title-h1.woff2') format('woff2'),
|
|
url('./title-h1.woff') format('woff'),
|
|
url('./title-h1.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'title-link';
|
|
src: url('./title-link.woff2') format('woff2'),
|
|
url('./title-link.woff') format('woff'),
|
|
url('./title-link.ttf') format('truetype');
|
|
}
|
|
|