mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
36 lines
802 B
CSS
36 lines
802 B
CSS
@import '@documenso/ui/styles/theme.css';
|
|
|
|
/* Inter Variable Fonts */
|
|
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('/fonts/inter-variablefont_opsz,wght.ttf') format('truetype-variations');
|
|
font-weight: 100 900;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* Inter Italic Variable Fonts */
|
|
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('/fonts/inter-italic-variablefont_opsz,wght.ttf') format('truetype-variations');
|
|
font-weight: 100 900;
|
|
font-style: italic;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* Caveat Variable Font */
|
|
@font-face {
|
|
font-family: 'Caveat';
|
|
src: url('/fonts/caveat-variablefont_wght.ttf') format('truetype-variations');
|
|
font-weight: 400 600;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@layer base {
|
|
:root {
|
|
--font-sans: 'Inter';
|
|
--font-signature: 'Caveat';
|
|
}
|
|
}
|