Google Fonts Import in Cayman Theme | Generated by AI

Home 2025.09

Yes — that’s very likely the reason.

When you write:

@import "jekyll-theme-cayman";

you’re not just pulling in some local SCSS — you’re importing the entire theme’s stylesheet, which itself contains (or links to) the Google Fonts import. Cayman uses Open Sans as its default font, and it pulls it from https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap.

So the flow looks like this:

  1. Your SCSS says @import "jekyll-theme-cayman";.
  2. Jekyll expands that into the theme’s _sass files.
  3. Inside Cayman’s SCSS, there’s a line like:

    @import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap");
    
  4. That’s the network request you’re seeing in DevTools.

How to remove or override


👉 If you want, I can show you exactly which Cayman SCSS file has the Google Fonts line and how to override it cleanly in your Jekyll setup. Do you want me to walk through that step by step?


Back Donate