| |
| |
| |
|
|
|
|
|
|
| @font-face {
|
| font-family: 'Inter';
|
| font-style: normal;
|
| font-weight: 300 800;
|
| font-display: swap;
|
| src: local('Inter'), local('Inter-Regular');
|
| }
|
|
|
|
|
| @font-face {
|
| font-family: 'Source Code Pro';
|
| font-style: normal;
|
| font-weight: 400 700;
|
| font-display: swap;
|
| src: local('Source Code Pro'), local('SourceCodePro-Regular');
|
| }
|
|
|
|
|
| @font-face {
|
| font-family: 'Roboto Mono';
|
| font-style: normal;
|
| font-weight: 400 700;
|
| font-display: swap;
|
| src: local('Roboto Mono'), local('RobotoMono-Regular');
|
| }
|
|
|
|
|
| @font-face {
|
| font-family: 'Fira Code';
|
| font-style: normal;
|
| font-weight: 400 700;
|
| font-display: swap;
|
| src: local('Fira Code'), local('FiraCode-Regular');
|
| }
|
|
|
|
|
| @font-face {
|
| font-family: 'Poppins';
|
| font-style: normal;
|
| font-weight: 400 700;
|
| font-display: swap;
|
| src: local('Poppins'), local('Poppins-Regular');
|
| }
|
|
|
|
|
| @font-face {
|
| font-family: 'Playfair Display';
|
| font-style: normal;
|
| font-weight: 400 700;
|
| font-display: swap;
|
| src: local('Playfair Display'), local('PlayfairDisplay-Regular');
|
| }
|
|
|
|
|
| @font-face {
|
| font-family: 'Montserrat';
|
| font-style: normal;
|
| font-weight: 400 800;
|
| font-display: swap;
|
| src: local('Montserrat'), local('Montserrat-Regular');
|
| }
|
|
|
|
|
| @font-face {
|
| font-family: 'Space Grotesk';
|
| font-style: normal;
|
| font-weight: 400 700;
|
| font-display: swap;
|
| src: local('Space Grotesk'), local('SpaceGrotesk-Regular');
|
| }
|
|
|
|
|
| @font-face {
|
| font-family: 'Ubuntu';
|
| font-style: normal;
|
| font-weight: 400 700;
|
| font-display: swap;
|
| src: local('Ubuntu'), local('Ubuntu-Regular');
|
| }
|
|
|
|
|
| @font-face {
|
| font-family: 'Lato';
|
| font-style: normal;
|
| font-weight: 400 700;
|
| font-display: swap;
|
| src: local('Lato'), local('Lato-Regular');
|
| }
|
|
|
|
|
| @font-face {
|
| font-family: 'JetBrains Mono';
|
| font-style: normal;
|
| font-weight: 400 700;
|
| font-display: swap;
|
| src: local('JetBrains Mono'), local('JetBrainsMono-Regular');
|
| }
|
|
|
|
|
| @font-face {
|
| font-family: 'Orbitron';
|
| font-style: normal;
|
| font-weight: 400 900;
|
| font-display: swap;
|
| src: local('Orbitron'), local('Orbitron-Regular');
|
| }
|
|
|
|
|
| :root {
|
| --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
| --font-code: 'Source Code Pro', 'Fira Code', 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
|
| --font-display: 'Orbitron', 'Montserrat', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
|
| --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
|
| --font-rounded: 'Poppins', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
|
| --font-space: 'Space Grotesk', 'Orbitron', monospace;
|
| --font-tech: 'Ubuntu', 'Roboto', sans-serif;
|
| --font-corporate: 'Lato', 'Open Sans', sans-serif;
|
| }
|
|
|
|
|
| body {
|
| font-family: var(--font-inter);
|
| }
|
|
|
| code, pre, .font-mono {
|
| font-family: var(--font-code);
|
| }
|
|
|
| h1, h2, h3, .font-display {
|
| font-family: var(--font-display);
|
| }
|
|
|