/* Custom utility for negative z-index */
.-z-10 {
    z-index: -10;
}
/* Local Founders Grotesk font integration */
@font-face {
    font-family: 'Founders Grotesk';
    src: url('./fonts/FoundersGrotesk-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Founders Grotesk';
    src: url('./fonts/FoundersGrotesk-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Founders Grotesk';
    src: url('./fonts/FoundersGrotesk-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Founders Grotesk';
    src: url('./fonts/FoundersGrotesk-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Founders Grotesk Mono';
    src: url('./fonts/TestFoundersGroteskMono-Regular-BF66175e9603eb8.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --font-founders-grotesk: 'Founders Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --font-founders-grotesk-mono: 'Founders Grotesk Mono', 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
}

body {
    font-family: var(--font-founders-grotesk);
}

.font-founders-grotesk {
    font-family: var(--font-founders-grotesk);
}

.font-founders-grotesk-mono {
    font-family: var(--font-founders-grotesk-mono);
}

/* End local font integration */