Skip to content

Render-blocking Google Fonts and an unused font family #29

@Harsh-goswami-103

Description

@Harsh-goswami-103

Problem

src/styles/fonts.css loads fonts via CSS @import (Inter, Plus Jakarta Sans, JetBrains Mono).

  • CSS @import is render-blocking and not parallelized.
  • No <link rel="preconnect"> to fonts.gstatic.com.
  • JetBrains Mono is downloaded but never used anywhere.

Impact

  • Slower first paint (blocking font request chained behind CSS).
  • Wasted bandwidth fetching unused JetBrains Mono weights.

Acceptance Criteria

  • Move font loading to <link> tags in index.html with preconnect, or self-host.
  • Drop JetBrains Mono.
  • Subset to the weights actually used.

Priority

Medium

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions