23 lines
391 B
CSS
23 lines
391 B
CSS
@font-face {
|
|
font-family: 'Geist';
|
|
src: url('/fonts/Geist.woff2') format('woff');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'GeistMono';
|
|
src: url('/fonts/GeistMono.woff2') format('woff');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
body {
|
|
font-family: "Geist";
|
|
}
|
|
|
|
code {
|
|
font-family: "GeistMono";
|
|
}
|