PDF.js fonts vendored locally; CDN dependency removed
andrsschultz swaps `STANDARD_FONT_DATA_URL` from the unpkg CDN to a local `/pdfjs/standard_fonts/` path, bundling all 10 Foxit `.pfb` files and 4 Liberation Sans `.ttf` files directly into the repo. The rest of the commit strips Google Fonts and rewrites upstream brand links - fork personalization you can skip.
The PDF.js font vendoring is the part worth examining. Upstream ships pdfjs-dist@4.10.38 but points STANDARD_FONT_DATA_URL at https://unpkg.com/pdfjs-dist@4.10.38/standard_fonts/ - a runtime CDN call for every document that needs font data. andrsschultz cuts that by copying the Foxit and Liberation font set into frontend/public/pdfjs/standard_fonts/ and changing one line in highlightQuote.ts to point at /pdfjs/standard_fonts/. That's the whole change for fonts. It works offline, removes an unpkg outage from your error budget, and the license files for both font sets (LICENSE_FOXIT, LICENSE_LIBERATION) are included.
The rest of the commit is fork cleanup. The @import for Inter and EB Garamond in global-error.tsx is dropped, falling back to Georgia, serif. The signup page links to /terms and /privacy rather than https://mikeoss.com/terms and /privacy - note these relative paths presumably don't exist yet, so those links will 404 until pages are added. site-logo.tsx loses its production-vs-dev branch; the logo always links to /.
Those last three changes exist to remove the upstream mikeoss.com branding. They have no value to an independent fork.
Spotted something wrong? Or know the PR text has fresher detail than the writeup above?