/* Body text */
body {
    /* font-family: "Merriweather", Georgia, serif; */
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;   /* normal weight */
    line-height: 1.6;
    color: var(--color-foreground-primary);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    /* font-family: "Lora", "Palatino Linotype", serif; */
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;   /* slightly bolder than body */
    color: var(--color-foreground-primary);
}

/* Code blocks */
.highlight pre {
    /* font-family: "Courier New", monospace; */
    font-family: "Roboto Mono", "Courier New", monospace;
    font-size: 0.9em;
    line-height: 1.4;
}

/* Admonitions (notes, warnings) */
.admonition {
    background-color: var(--color-admonition-background, #f4f4f4);
    border-left: 4px solid var(--color-admonition-title-background, #999999);
    padding: 0.6em 1em;
}

/* Tables */
table {
    border-collapse: collapse;
    margin: 1em 0;
}


th, td {
    border: 1px solid #999;
    padding: 0.3em 0.6em;
}
