# @sarap422/fonts

Web fonts collection with size-adjust support for optimal typography balance.

## 📦 Installation

```html
<!-- original version -->
<link href="https://unpkg.com/@sarap422/font-hackgen@1.0.0/font-face.css" rel="stylesheet">

<!-- size-adjust version -->
<link href="https://unpkg.com/@sarap422/font-hackgen@1.0.0/font-face.adjusted.css" rel="stylesheet">
```

## 📁 Directory Structure

```
font/
├── *.woff
├── *.woff2
├── font-face.css             # size-adjust: 100%
├── font-face.adjusted.css    # Font with adjusted size-adjust values
├── OFL.txt                   # Original Font's LICENSE
├── README.original.md        # Original Font's README
└── README.md                 # README
```

## 📝 Changelog

### [1.0.0] - 2025-10-08
#### Added
- size-adjust support

## 📄 Licenses

Each font has its own license file in its directory:
- Most fonts: SIL Open Font License 1.1 (OFL.txt)
- Some fonts: CC0 1.0 Universal (LICENSE or CC0.txt)
- Icon fonts: Various (see individual LICENSE files)

Please check each font's directory for specific license information.

## ⚙️ What is size-adjust?

The `size-adjust` CSS property allows you to normalize the visual size of different fonts. This is particularly useful when mixing Japanese and English fonts, as they often have different x-heights and appear mismatched at the same font-size.

```css
@font-face {
  font-family: "Example Font";
  size-adjust: 106%; /* Makes the font 6% larger */
}
```

## 🤝 Contributing

Feel free to suggest new fonts or size-adjust values via issues.

## 👤 Author

sarap422

---

*This package is a collection of fonts from various authors. All original licenses are preserved and included in each font's directory.*