JSON only shares the fields and not any data that is save to those fields.
When dealing with this you need to build the default values into your theme.
example:
$option = get_field('your-field-name', 'options');
if (!$option) {
$option = 'default option value';
}