27 lines
672 B
CSS
Executable file
27 lines
672 B
CSS
Executable file
/* Custom font definition */
|
|
@font-face {
|
|
font-family: 'tt2020';
|
|
src: url('/fonts/TT2020StyleE-Regular.woff2') format('woff2');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap; /* Improves loading performance */
|
|
}
|
|
|
|
/* Optional: if you have multiple weights/styles */
|
|
/*
|
|
@font-face {
|
|
font-family: 'CustomFont';
|
|
src: url('/fonts/your-font-file-bold.woff') format('woff');
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'CustomFont';
|
|
src: url('/fonts/your-font-file-italic.woff') format('woff');
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
font-display: swap;
|
|
}
|
|
*/
|