/**
 * ARC Site Theme Typography Engine - Strict Luxury Font Weights (300, 400, 500)
 * Almarai Google Font Import
 */

@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;500&display=swap');

:root {
    --font-primary: 'Almarai', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
}

body, button, input, select, textarea {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    line-height: 1.3;
}

/* Strict Directive: Remove all bold weights across theme elements */
b, strong, th, .bold {
    font-weight: var(--font-weight-medium) !important;
}
