/* ============================================================================ TYPOGRAPHY - Fonts & Text Styles ============================================================================ */ /* NOTE: Fonts are loaded via in index.html for better performance */ /* Base Typography */ body { font-family: 'Quicksand', 'Source Sans Pro', -apple-system, system-ui, sans-serif; color: var(--text-secondary, #333333); 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, #0066cc); text-decoration: none; &:hover { text-decoration: underline; } }