/* css/common.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700&family=Roboto:wght@400;500;700&family=Share+Tech&display=swap');

:root {
    --app-font-family: 'Inter', 'Montserrat', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

body, html, button, input, textarea, select {
    font-family: var(--app-font-family) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
