# @sarap422/fonts

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

## 📦 Installation

```html
<link href="https://unpkg.com/@sarap422/font-simple-icons@1.0.0/simple-icons.min.css" rel="stylesheet">
```

## 📁 Directory Structure

```
font/
├── dist/                         # Font 
├── simple-icons.min.css          # CSS 
├── LICENSE.md                    # Original Font's LICENSE
└── README.md                     # README
```

## 📁 CSS

```css
.si,
.si-fit {
  font-weight: normal;
  font-style: normal;
  white-space: nowrap;
  display: inline-flex;
  vertical-align: middle;
  place-content: center;
  place-items: center;
  line-height: 1;
  font-size: 133.3%;
}
```

## 📝 Changelog

### [1.0.0] - 2025-10-08
#### Added
- Added

## 📄 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.*