/* fonts-fix.css — override / polishing rules for type */
:root{--serif:'Cormorant Garamond',serif;--sans:'Inter',system-ui,sans-serif}
html{font-family:var(--sans);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
body{font-family:var(--sans);font-weight:400;color:var(--text);line-height:1.6}
/* Headings use serif for premium look */
h1,h2,h3,h4,h5,h6,.brand strong,.partner-card h3{font-family:var(--serif) !important;font-weight:600 !important;letter-spacing:-0.01em}
h1{font-weight:700}
h2{font-weight:700}
/* Improve legibility on small screens */
@media(max-width:640px){h1{font-size:clamp(28px,7.2vw,44px);line-height:1.02}h2{font-size:clamp(20px,5.2vw,32px)}}
/* Make sure UI text remains Inter */
p,li,a,button,input,select,textarea,nav a{font-family:var(--sans);font-weight:400}
/* Tuned letter-spacing and kerning for serif headings */
h1,h2{font-kerning:auto;text-rendering:optimizeLegibility}
/* Fallbacks */
@font-face{font-family:'InterVarFallback';src:local('Inter'),local('System UI');font-display:swap}
