/** Pure quota compare — host owns counters and tier tables. */
export function checkStorageQuota(used: number, requested: number, limit: number): boolean {
  return used + requested <= limit
}
