@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&family=Inter:wght@400;500;700&display=swap");

:root {
    --color-primary: #0f172a;
    --color-background: #f8fafc;
    --color-white: #ffffff;
    --color-accent: #f59e0b;
    --color-muted: #64748b;
    --color-border: #e2e8f0;
    --color-insurance: #1e40af;
    --color-tracker: #065f46;
    --color-loans: #92400e;
    --font-heading: "DM Sans", ui-sans-serif, system-ui, sans-serif;
    --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
}

body {
    background-color: var(--color-background);
    color: var(--color-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}
