/**
 * Commerce Re:Main — Japanese typography
 * Google Fonts: Noto Sans JP (Regular 400 / SemiBold 600 only)
 *
 * Figma weight mapping:
 * - SemiBold → 600
 * - Regular, Medium, Light, Bold, etc. → 400
 */

.commerce-insight {
  font-family: 'Noto Sans JP', sans-serif;
  font-feature-settings: 'palt' on;
  font-weight: 400;
}

.commerce-insight-font-regular {
  font-weight: 400;
}

.commerce-insight-font-semibold {
  font-weight: 600;
}

/* Tailwind utility fallback: non-SemiBold weights → Regular 400 */
.commerce-insight :where(
  .font-thin,
  .font-extralight,
  .font-light,
  .font-normal,
  .font-medium,
  .font-bold,
  .font-extrabold,
  .font-black
) {
  font-weight: 400;
}

.commerce-insight :where(.font-semibold) {
  font-weight: 600;
}
