2025-11-19 14:31:17 +00:00
|
|
|
/* ============================================================================
|
|
|
|
|
TYPOGRAPHY - Fonts & Text Styles
|
|
|
|
|
============================================================================ */
|
|
|
|
|
|
2025-11-30 12:32:46 +00:00
|
|
|
/* NOTE: Fonts are loaded via <link> in index.html for better performance */
|
2025-11-19 14:31:17 +00:00
|
|
|
|
|
|
|
|
/* Base Typography */
|
|
|
|
|
body {
|
|
|
|
|
font-family: 'Quicksand', 'Source Sans Pro', -apple-system, system-ui, sans-serif;
|
|
|
|
|
color: var(--text-secondary);
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-smoothing: antialiased;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Links */
|
|
|
|
|
a {
|
|
|
|
|
color: var(--accent-blue);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
}
|